home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 April
/
EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso
/
EARCD
/
comm
/
fido
/
CrashMail125.lha
/
CrashMail
/
rexx
/
Scan.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-09-11
|
342b
|
16 lines
/*
Scan.rexx
If CrashMail is running, it is told to start scanning. Otherwise CrashMail
is executed with the SCAN keyword. Please change the paths to suit your
setup.
*/
if ~show('p','CRASHMAIL') then do
address command 'MAIL:CrashMail Scan >"CON:0/50/640/100/CrashMail Scan..."'
end
else do
address 'CRASHMAIL' scan
end